/* Import Elegant Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

/* Website Development Section */
.website-section {
    width: 100%;
    background: linear-gradient(135deg, #f9f7fe 0%, #ffffff 100%);
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Flexbox Layout */
.website-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    width: 100%;
    gap: 40px;
    margin: 0 auto;
}

/* Left Side (Image) */
.website-image-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    opacity: 1;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.website-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Right Side (Text) */
.website-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    opacity: 1;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    color: #2d2d2d;
}

/* Main Title */
.website-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.website-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #19C0FF;
    border-radius: 2px;
}

/* Subtitle */
.website-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* Section Heading */
.website-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color:#19C0FF;
    margin-bottom: 15px;
}

/* List Styling */
.website-list {
    list-style: none;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #444;
}

.website-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 32px;
    line-height: 1.5;
}

.website-list li::before {
    content: "✔";
    color: #19C0FF;
    position: absolute;
    left: 0;
    font-size: 18px;
    font-weight: bold;
}

/* Call-to-Action Button */
.website-button {
    background: #19C0FF;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
    display: inline-block;
    margin-top: 15px;
}

.website-button:hover {
    background: #19C0FF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

/* Reveal Section on Scroll */
.show .website-content,
.show .website-image-container {
    opacity: 1;
    transform: translateX(0);
}

/* 🔹 Responsive Design Fixes */
@media (max-width: 1024px) {
    .website-container {
        flex-direction: row;
        gap: 30px;
    }

    .website-title {
        font-size: 38px;
    }

    .website-subtitle {
        font-size: 17px;
    }

    .website-list {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .website-section {
        padding: 60px 5%;
    }

    .website-container {
        flex-direction: column-reverse;
        /* text-align: center; */
        width: 100%;
        margin: 0 auto;
    }

    .website-title {
        font-size: 34px;
    }

    .website-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .website-heading {
        font-size: 20px;
    }

    .website-subtitle {
        font-size: 16px;
    }

    .website-list {
        font-size: 14px;
    }

    .website-image-container {
        max-width: 90%;
    }

    .website-content {
        max-width: 100%;
    }

    .website-button {
        font-size: 14px;
        padding: 10px 24px;
    }
}

@media (max-width: 480px) {
    .website-title {
        font-size: 30px;
    }

    .website-subtitle {
        font-size: 15px;
    }

    .website-list {
        font-size: 14px;
    }

    .website-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .website-container {
        width: 100%;
    }
}


/* New section css */


/* Section Styling */
.why-section {
    width: 100%;
    background: linear-gradient(135deg, #fff6f6 0%, #e3e9ff 100%);
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transform: translateY(90px); /* Moves the section down */
    transition: opacity 1s ease-out, transform 2s ease-out;
}

.fade-up.why-section {
    opacity: 1;
    transform: translateY(0);
}

/* Container */
.why-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    opacity: 1;
   
}

/* Section Title */
.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.why-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #19C0FF;
    border-radius: 2px;
}

/* Subtitle */
.why-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* Highlighted Text */
.why-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #19C0FF;
    margin: 20px 0;
    font-family: 'Poppins', sans-serif;
}

/* Call-to-Action Button */
.why-button {
    background: #19C0FF;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 224, 224, 0.3);
    display: inline-block;
    margin-top: 15px;
}

.why-button:hover {
    background: #6266b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 23, 23, 0.4);
}

/* Reveal Section on Scroll */
.show .why-container {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-section {
        padding: 60px 5%;
    }

    .why-title {
        font-size: 34px;
    }

    .why-title::after {
        width: 50px;
    }

    .why-highlight {
        font-size: 18px;
    }

    .why-subtitle {
        font-size: 16px;
    }

    .why-button {
        font-size: 14px;
        padding: 10px 24px;
    }
}

@media (max-width: 480px) {
    .why-title {
        font-size: 30px;
    }

    .why-subtitle {
        font-size: 15px;
    }

    .why-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}
